home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / pcwiz01.arc / REPLACE.INS < prev    next >
Text File  |  1991-08-22  |  2KB  |  81 lines

  1. REPLACE     Reads the names of all files in the TARGET
  2.             directory and compares them with names of
  3.             the files in the SOURCE. Will only update
  4.             (REPLACE) those files that MATCH. (The /A
  5.             switch allows for ADDing new files.)
  6.  
  7. Format:     REPLACE [D:Path]SourceFile [Dest D:\Path]
  8.             [/A][/P][/R][/S][/W]
  9.  
  10.   /A   ADDS files from the SOURCE location that do not
  11.        have MATCHING filenames on the TARGET.
  12.  
  13.   /P   PROMPTs the user for a response of [Y] prior to
  14.        completing the requested REPLACE operation.
  15.  
  16.   /R   allows files that are marked as READ-ONLY on the
  17.        TARGET directory to be REPLACED.
  18.  
  19.  
  20.   /S   searches through all SUBDIRECTORIES on TARGET
  21.        for files that match the REPLACE criteria and
  22.        then performs the requested REPLACE action(s).
  23.  
  24.   /W   WAITS for the user to place a new diskette in
  25.        the TARGET drive before executing the command.
  26.  
  27.  
  28.  
  29.  
  30. Example:          REPLACE \123\*.* A:
  31.  
  32.    REPLACEs ALL files on the diskette in drive A that
  33.    have filenames that MATCH those that are contained
  34.    in the \123 directory of the CURRENT drive.
  35.  
  36.  
  37.  
  38. Example:        REPLACE \123\*.WK1 A: /R
  39.  
  40.    REPLACEs all files with a .WK1 extension on the
  41.    diskette in drive A: that MATCH the filenames
  42.    contained in the \123 directory on CURRENT drive.
  43.    The /R switch ensures that matching READ-ONLY
  44.    files are also REPLACEd on A:.
  45.  
  46.  
  47.  
  48. Example:      REPLACE \123\*.WK1 A: /R /W
  49.  
  50.    Same as above, except the system will display a
  51.    PROMPT that causes the system to WAIT until you
  52.    ensure that drive A: contains proper diskette.
  53.  
  54.  
  55.  
  56. Example:    REPLACE A:*.TXT C:\WP\DATA1 /R /S /W
  57.  
  58.    REPLACEs all *.TXT files in the C:\WP\DATA1
  59.    directory (AND the *.TXT files in any of it's
  60.    lower subdirectories) that MATCH the names of
  61.    the *.TXT files contained on the diskette in
  62.    drive A.
  63.  
  64.  
  65. Example:     REPLACE \123\*.WK1 A: /A
  66.  
  67.    ADDs ALL files with extension of .WK1 contained
  68.    in the \123 directory of the CURRENT drive that
  69.    do NOT already exist on the diskette in drive A.
  70.    (e.g., MATCHING files not found.) Existing files
  71.    are NOT updated/replaced.)
  72.  
  73.  
  74.  
  75. [*]  Do NOT use the /A and /S switches together.
  76.  
  77. [*]  Be cautious when using the /S switch because
  78.    it will also REPLACE all files on the TARGET,
  79.    including those in ALL lower subdirectories,
  80.    that match the files on the source.
  81.